From: Keir Fraser Date: Tue, 1 Jun 2010 06:06:05 +0000 (+0100) Subject: libxl: fix domain suspend debug typo. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12046 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=81c0e00a2ed3644c314c552f29adcf4052f4cff1;p=xen.git libxl: fix domain suspend debug typo. Signed-off-by: Zhigang Wang --- diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c index 18c63e8aa2..d7563b4b31 100644 --- a/tools/libxl/libxl.c +++ b/tools/libxl/libxl.c @@ -495,7 +495,7 @@ int libxl_domain_suspend(struct libxl_ctx *ctx, libxl_domain_suspend_info *info, { int hvm = is_hvm(ctx, domid); int live = info != NULL && info->flags & XL_SUSPEND_LIVE; - int debug = info != NULL && info->flags & XL_SUSPEND_LIVE; + int debug = info != NULL && info->flags & XL_SUSPEND_DEBUG; core_suspend(ctx, domid, fd, hvm, live, debug); if (hvm)